home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / srtsltn / data1.cab / Target / Samples / Tutorial / SkipHeader.ssp < prev   
Encoding:
Text File  |  1998-08-05  |  303 b   |  11 lines

  1. ; This profile sorts sales.txt after Product.
  2. ; The first 100 records are treated as the file header.
  3. ; The header is skipped during the sort and also NOT written
  4. ; to the output file
  5.  
  6. INPUTFILE(sales.txt)
  7. OUTPUTFILE(sorted.txt)
  8. FILETYPE(FIXED,94)
  9. HEADER(100,RECORD,FALSE)
  10. KEY(IntS,ASC,0,8,2)
  11.